Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

CP Editor

Together we are building the best editor for Competitive Programmers.
Collective - Host: opensource - https://opencollective.com/cpeditor - Website: https://cpeditor.org - Code: https://github.com/cpeditor

Add mac Install instructions

This commits adds instruction on how to install the editor on macOS

github.com/cpeditor/cpeditor - b909a8bec1460e48e7e45220b8e2f59f9fba9414 authored almost 5 years ago by Ashar <[email protected]>
fix(mainwindow): fix "compile" of Python

Python was "compiled", in fact, the source is save. After this change,
the "compilation has fini...

github.com/cpeditor/cpeditor - c9d31bae423b2a4208e99b48a441199da6ae632b authored almost 5 years ago by ouuan <[email protected]>
fix(mainwindow): fix "compile" of Python

Python was "compiled", in fact, the source is save. After this change,
the "compilation has fini...

github.com/cpeditor/cpeditor - aab7bcc98d4672589288bd32f3d1b85cbe615ce0 authored almost 5 years ago by ouuan <[email protected]>
release 5.8.5-beta

github.com/cpeditor/cpeditor - 319ce314badd607d5ef4840ffec83d63157e4ba2 authored almost 5 years ago by Ashar Khan <[email protected]>
release 5.7.3-stable

github.com/cpeditor/cpeditor - 79e3694f88fcbb56fe99f656121db664d714d776 authored almost 5 years ago by Ashar Khan <[email protected]>
Merge branch 'master' into dev

github.com/cpeditor/cpeditor - 156a14b419aa7290945055c4e4684417fef3198e authored almost 5 years ago by Ashar Khan <[email protected]>
remove a.out

github.com/cpeditor/cpeditor - 4b47c8b81e8c19a1a3a4791129b062fbd36c7e47 authored almost 5 years ago by Ashar Khan <[email protected]>
Add mac resources and info.plist (#159)

* add mac resources and info.plist

* Add Job for macOS Compile and allow build on pr for deve...

github.com/cpeditor/cpeditor - 48e59928bf34cef614a057b5143d344785609947 authored almost 5 years ago by Ashar <[email protected]>
fix(testcases): add an empty test case if no test was loaded from file

github.com/cpeditor/cpeditor - 30971f61090e3727dd750a62cc67c7794b4046ef authored almost 5 years ago by ouuan <[email protected]>
fix(mainwindow): fix the position of submit button

The position of compile & run buttons is modified in b58a3cf, but submit
button didn't change. T...

github.com/cpeditor/cpeditor - 5ceb309740e83323c5e63a815e4774554409e8a6 authored almost 5 years ago by ouuan <[email protected]>
chore: Make the repo Commitizen-friendly

I followed
https://github.com/commitizen/cz-cli#making-your-repo-commitizen-friendly
to make the...

github.com/cpeditor/cpeditor - 6b3a441d570f57c450c1c6c05465fa19eda0e2f5 authored almost 5 years ago by ouuan <[email protected]>
chore: Make the repo Commitizen-friendly

I followed
https://github.com/commitizen/cz-cli#making-your-repo-commitizen-friendly
to make the...

github.com/cpeditor/cpeditor - 10412da9fad7151c4e80cb05c3f3f402952dcb05 authored almost 5 years ago by ouuan <[email protected]>
feat(mainwindow): Add column/line number and selection count

This feature is requested in coder3101#157.

The implementation follows Sublime Text.

Line numb...

github.com/cpeditor/cpeditor - fe21e56c88492ee999dee84e100bffccd0ad522d authored almost 5 years ago by ouuan <[email protected]>
fix: Auto-indent for single "{" without "}"

The bug: there was no auto-indent for a single "{" without "}".

This bug was introduced in Mega...

github.com/cpeditor/QCodeEditor - 7ca15611da3be20c947fc471e727e56786726316 authored almost 5 years ago by ouuan <[email protected]>
fix: Fix bug of toggleComment when the line is empty

Empty lines don't match /\S/, so change the regex to /\S|^\s*$/ will
match the right place for b...

github.com/cpeditor/QCodeEditor - 6d53f6bbe6a284b24e410769c023d23fef35cafd authored almost 5 years ago by ouuan <[email protected]>
refactor: Make shortcuts slots

These slots are added:

/**
* @brief Slot, that indent the selected lines.
*/
void indent();

...

github.com/cpeditor/QCodeEditor - df7a31232adcd69365a7bb7cca03afb3aaa44cf8 authored almost 5 years ago by ouuan <[email protected]>
feat: Add Shift+Ctrl+K for delete selected lines

github.com/cpeditor/QCodeEditor - bcc66044114421aa70d571a576d1af84295c7feb authored almost 5 years ago by ouuan <[email protected]>
feat: Shift+Ctrl+Up/Down for swapping lines

github.com/cpeditor/QCodeEditor - 682a7b7d4ea39372bff232722f39fcbb35f0c242 authored almost 5 years ago by ouuan <[email protected]>
feat: Add toggle comments shortcut

1. Single-line comments

- shortcut: Ctrl + /

- before:
```cpp
foo
bar
...

github.com/cpeditor/QCodeEditor - 02388936b457027d6e8204f3a68a4025cdcd4470 authored almost 5 years ago by ouuan <[email protected]>
refactor: Add functions to remove/add in each line of selection

/**
* @brief Method for remove the first group of regex
* in each line of the selection.
* @p...

github.com/cpeditor/QCodeEditor - 7f6a6e0fc8ff80806ccb28e62790eb910f793d02 authored almost 5 years ago by ouuan <[email protected]>
docs: Update PR template

github.com/cpeditor/cpeditor - faded5c8b7a74254d384e3a9c0543a4bf7f43884 authored almost 5 years ago by ouuan <[email protected]>
docs: Require light/dark system themes support

github.com/cpeditor/cpeditor - a575664a67a9c3fc848252382674476b39a7eed4 authored almost 5 years ago by ouuan <[email protected]>
docs: Update PR template

github.com/cpeditor/cpeditor - 5d67c3247c417d2befde9e438af8336e880784f3 authored almost 5 years ago by ouuan <[email protected]>
feat: Add parentheses for selections

For example, if the selected text is `foo` and you press `{` and
autoParentheses is on, the text...

github.com/cpeditor/QCodeEditor - 854dee434666fedd3855cae6ded0c78bc96ba43e authored almost 5 years ago by ouuan <[email protected]>
fix: Highlight occurrences for identifiers and numbers only

In the old version every multiple occurrence is highlighted, such as
tabs. It was very confusing...

github.com/cpeditor/QCodeEditor - c92c6d1702b2620eb09579e92fee10bd924e82a1 authored almost 5 years ago by ouuan <[email protected]>
style & fix: format codes & underline occurrence other than frame

The occurrences were framed, but it sometimes cost a long time which is
perceptible by the users...

github.com/cpeditor/QCodeEditor - 2a2e66ea362cda7234e95e4e2e0b244d6303ed28 authored almost 5 years ago by ouuan <[email protected]>
fix: Send relative paths based on secondary instances to primary

This fixes coder3101#144.

github.com/cpeditor/cpeditor - 3478bc3adae53333a837dfaa3f73b544991ad0f1 authored almost 5 years ago by ouuan <[email protected]>
fix: Update window title to canonicalPath on save

filePath is updated in MainWindow::isTextChanged(), and this function
is called in MainWindow::g...

github.com/cpeditor/cpeditor - 35298066e4d1f084e8b990263c666e4d6af95eb3 authored almost 5 years ago by ouuan <[email protected]>
Make icon round and transparent\n\n\n You may need to refresh your ICON CACHE for effects to take place

github.com/cpeditor/cpeditor - 52c188f34d7a4796d4120917befeabbd36d376ee authored almost 5 years ago by Ashar Khan <[email protected]>
fix: Update window title to canonicalPath on save

filePath is updated in MainWindow::isTextChanged(), and this function
is called in MainWindow::g...

github.com/cpeditor/cpeditor - 06e7a18c91fb9a0c691f94ebd6a4fbdebaff3e3e authored almost 5 years ago by ouuan <[email protected]>
fix: Send relative paths based on secondary instances to primary

This fixes coder3101#144.

github.com/cpeditor/cpeditor - b26466a6b586a0ed1d6d07720c48403422b1adc2 authored almost 5 years ago by ouuan <[email protected]>
test: Use Github Actions instead of travis.ci (#141)

* test: Use Github Actions instead of travis.ci

It's easy to use Github Actions to test on mu...

github.com/cpeditor/cpeditor - f22d8c796768183b7bdebad169c96d35274f61f7 authored almost 5 years ago by ouuan <[email protected]>
fix(TestCases): Fix CE about static const member

This is reported in coder3101#129.

See https://stackoverflow.com/questions/27258344/compiler-er...

github.com/cpeditor/cpeditor - a54a2cb1ce3d75f62dd0bba826c91bc69500788b authored almost 5 years ago by ouuan <[email protected]>
test: Use Github Actions instead of travis.ci (#141)

* test: Use Github Actions instead of travis.ci

It's easy to use Github Actions to test on mu...

github.com/cpeditor/cpeditor - 744ee99cdd10d269cb90cde3aaffc1daec949aaa authored almost 5 years ago by ouuan <[email protected]>
release 5.8.4-beta

github.com/cpeditor/cpeditor - af510cbd41ff4513504fab474f95e9fa3e64dcdd authored almost 5 years ago by Ashar Khan <[email protected]>
feat: Add tab for multiline indent

github.com/cpeditor/QCodeEditor - b3e27a3a4c053e20c9a390df0f9f2dc7042fa660 authored almost 5 years ago by ouuan <[email protected]>
feat: Shift+Tab for unindent

github.com/cpeditor/QCodeEditor - 2c145bd8293c97664bbf8632a6769194f5a1b282 authored almost 5 years ago by ouuan <[email protected]>
style: Format codes

github.com/cpeditor/QCodeEditor - 712bc1aff311a5ac0bdc056679410da2c9e3238f authored almost 5 years ago by ouuan <[email protected]>
resolve conflict and release 5.8.4-beta

github.com/cpeditor/cpeditor - a91e0c3238c16232aac825ee69fb195d5e6a9677 authored almost 5 years ago by Ashar Khan <[email protected]>
Comment Selection and and unselection other improvements

github.com/cpeditor/cpeditor - bc5ec6d1508dc553f38f8becefae142097e000a4 authored almost 5 years ago by Ashar Khan <[email protected]>
fix: Fix wrong connection of errorOccurred signal of detached runner

github.com/cpeditor/cpeditor - 7f174401aaf3e60e02a4c4c1447586c9bf90f81a authored almost 5 years ago by ouuan <[email protected]>
feat: Display start message of detached runner

Now there will be a message in the logger when the detached runner
starts.

github.com/cpeditor/cpeditor - 2f38cf335490efad72e1da1ad981027da3a6e648 authored almost 5 years ago by ouuan <[email protected]>
feat(TestCases): Add clear button

A clear button is added, when you click it, all empty test cases will
be deleted, if there are a...

github.com/cpeditor/cpeditor - a0e4ff0ebeea3822eac669f30a75d07bb61ce6fa authored almost 5 years ago by ouuan <[email protected]>
feat(TestCases): Display verdicts (AC/WA/total)

Display verdicts in "AC/WA/total" form.

The verdicts are updated only when the output changes, ...

github.com/cpeditor/cpeditor - a9d75826ecca21b4525c76905cf7b662084924bc authored almost 5 years ago by ouuan <[email protected]>
fix(TestCases): Make Expected buttons narrower

Shrink load expected button and delete test case button to fit the text.

In the old version, th...

github.com/cpeditor/cpeditor - 4acc65a9dc3c15a71b509081dc8c12f656b5e4f8 authored almost 5 years ago by ouuan <[email protected]>
docs: Require light/dark system themes support

github.com/cpeditor/cpeditor - 811f3ad9eb115ed146f7ab073f5a3f873df3bebb authored almost 5 years ago by ouuan <[email protected]>
docs(CONTRIBUTING.md): Add good first issues instruction

github.com/cpeditor/cpeditor - 27491c6818347fb66c32adfe6850fe846c123bd9 authored almost 5 years ago by ouuan <[email protected]>
Merge branch 'master' of https://github.com/coder3101/cp-editor

github.com/cpeditor/cpeditor - bfd51e5e92ae2368d52fbcabe95646310cdff8a8 authored almost 5 years ago by Ashar Khan <[email protected]>
Implement extended editor features

github.com/cpeditor/cpeditor - dfa3d54d1d40be1ab062e7fb240eb712972051d8 authored almost 5 years ago by Ashar Khan <[email protected]>
docs: Add Pull Request template

This template is based on talater.com/open-source-templates/, and is
slightly modified.

github.com/cpeditor/cpeditor - ac68302a9b3bb985e483753878fc89ee52ad7ed5 authored almost 5 years ago by ouuan <[email protected]>
docs: rename code_of_conduct.md to CODE_OF_CONDUCT.md

github.com/cpeditor/cpeditor - 9fa1fe4c6b4f8625dac9d68494a58c91b6f32ceb authored almost 5 years ago by ouuan <[email protected]>
docs: rename code_of_conduct.md to CODE_OF_CONDUCT.md

github.com/cpeditor/cpeditor - 48074e508aed6fdba23a91dfd50bc50785d9af47 authored almost 5 years ago by ouuan <[email protected]>
docs: Add Pull Request template

This template is based on talater.com/open-source-templates/, and is
slightly modified.

github.com/cpeditor/cpeditor - d27a32161d45594bbd81cf519e597df2f4e3c8b3 authored almost 5 years ago by ouuan <[email protected]>
docs(CONTRIBUTING.md): Add clang-format-9 version requirement

github.com/cpeditor/cpeditor - a7f9b8d98632ce0c8586d3a70cd11f85fe13e18f authored almost 5 years ago by ouuan <[email protected]>
docs(CONTRIBUTING.md): Add clang-format-9 version requirement

github.com/cpeditor/cpeditor - c5f2f7208434fb28244594b0ae445bd4baef691d authored almost 5 years ago by ouuan <[email protected]>
docs: Add Contributing Guidelines and Code of Conduct (#130)

* docs: Add Contributing Guidelines and Code of Conduct

CONTRIBUTING.md and code_of_conduct.m...

github.com/cpeditor/cpeditor - 2946bdd122a8ff67fc373578c6f0f7f72993165c authored almost 5 years ago by ouuan <[email protected]>
docs: Add Contributing Guidelines and Code of Conduct (#130)

* docs: Add Contributing Guidelines and Code of Conduct

CONTRIBUTING.md and code_of_conduct.m...

github.com/cpeditor/cpeditor - 4dab65069915232742e50c74b1815f9898e78cf3 authored almost 5 years ago by ouuan <[email protected]>
feat(tab bar menu): Add Copy Problem URL

github.com/cpeditor/cpeditor - 06cc6b4316fac76910c4e837bfad5e47c24f75e8 authored almost 5 years ago by ouuan <[email protected]>
sync with master

github.com/cpeditor/cpeditor - 540cbed0f93d75f5db8e4c52a19af2545a1c13ba authored almost 5 years ago by Ashar Khan <[email protected]>
release 5.7.1-stable

github.com/cpeditor/cpeditor - 369d6356d30dc74d0e1994ce1f729607441d9628 authored almost 5 years ago by Ashar Khan <[email protected]>
chore(README.md): Update badges

github.com/cpeditor/cpeditor - f0943b4ea18b72aee3c2ad8106096f4053e01a71 authored almost 5 years ago by ouuan <[email protected]>
chore(README.md): Update badges

github.com/cpeditor/cpeditor - 63c7c52c33d5a6a8293130606248027b49c88b19 authored almost 5 years ago by ouuan <[email protected]>
incorporate master changes

github.com/cpeditor/cpeditor - cdcb8374056ad7c48a933642838f79cf3f8126cb authored almost 5 years ago by Ashar Khan <[email protected]>
Update CMakeLists.txt

github.com/cpeditor/cpeditor - 95aa9357d073bc83f91c77119c64a6caf4ea041e authored almost 5 years ago by Ashar <[email protected]>
Hotfix Release title.

The release title could not have $(VERSION_TAG), hence removed.

github.com/cpeditor/cpeditor - a90d7e3e3e3699645c186abda003cf7c70729dd3 authored almost 5 years ago by Ashar <[email protected]>
resolve conflicts

github.com/cpeditor/cpeditor - 2d0c21699d355dcd926097306f94b33c3ebf0d83 authored almost 5 years ago by Ashar Khan <[email protected]>
hotfix azure-script

github.com/cpeditor/cpeditor - ce63a4854338b9210ecb6f87297039060a0d6f04 authored almost 5 years ago by Ashar Khan <[email protected]>
hotfix azure-script

github.com/cpeditor/cpeditor - 9dc2bc4fbe5b9ae5d05e44329eff49df89c842b9 authored almost 5 years ago by Ashar Khan <[email protected]>
release stable 5.7.1

github.com/cpeditor/cpeditor - aa56e0c3553ad222cb4e7773df63618ecb9297ad authored almost 5 years ago by Ashar Khan <[email protected]>
chore(Azure Pipelines): Include version number in release title

github.com/cpeditor/cpeditor - 0c33f54ec1ef01d07eccd5d23ff75cc0dd9943dc authored almost 5 years ago by ouuan <[email protected]>
resolve cherry-pick conflict

github.com/cpeditor/cpeditor - 5a51a7d8c96e7a1251c0b098723268722d9490d2 authored almost 5 years ago by Ashar <[email protected]>
update notifier improvements and better tags

github.com/cpeditor/cpeditor - 26e754a68272689f32d1de28f90efb3b8da201fa authored almost 5 years ago by Ashar Khan <[email protected]>
Pre-release for dev and stable for master

github.com/cpeditor/cpeditor - 72ab517baa7b3f5287bb4a2e7229fdac91dba9dd authored almost 5 years ago by Ashar <[email protected]>
pre-release for dev branch and about changes

github.com/cpeditor/cpeditor - 176ae382753bd821bc1d6076ad3c1d3daaa70a55 authored almost 5 years ago by Ashar Khan <[email protected]>
fix(compile): fix Python Compile & Run, fix #126

github.com/cpeditor/cpeditor - 4c7e61f6af934835f09b444ce8966eb657c9e182 authored almost 5 years ago by ouuan <[email protected]>
chore(README.md): Use the same style for badges

github.com/cpeditor/cpeditor - 9c63b42c61ae6be3e24e2260f7e83551421b72b2 authored almost 5 years ago by ouuan <[email protected]>
Merge branch 'master' into dev

github.com/cpeditor/cpeditor - 96f9f456eb289ec952dbd6bfea45b5cd946c10d4 authored almost 5 years ago by Ashar Khan <[email protected]>
Add tags for latest releases

github.com/cpeditor/cpeditor - 184fb8e298e623b150436354f22caaec895d0d1a authored almost 5 years ago by Ashar Khan <[email protected]>
chore(Azure Pipelines): Include version number in release title

github.com/cpeditor/cpeditor - 6860729f26a5f10129ea84739c31e01df89da6d9 authored almost 5 years ago by ouuan <[email protected]>
Add -rc -beta and -stable for releases

A tag with -rc or -beta will create a new release which will be pre-release. A tag with -stable ...

github.com/cpeditor/cpeditor - 4fa26f172ae80664a41cd5d5ac16c83060f8205f authored almost 5 years ago by Ashar <[email protected]>
chore(Azure Pipelines): Use beta and stable instead of dev and master

github.com/cpeditor/cpeditor - 5164c3ea692350c210c3bf1383be9e362837c359 authored almost 5 years ago by ouuan <[email protected]>
update notifier improvements and better tags

github.com/cpeditor/cpeditor - a1fe1dba61874393f6fe0578f65f2a5fd6959ca2 authored almost 5 years ago by Ashar Khan <[email protected]>
release 5.8.3

github.com/cpeditor/cpeditor - 545b3f8e2bd005c46e1c7d281604c389da2875fd authored almost 5 years ago by Ashar Khan <[email protected]>
Pre-release for dev and stable for master

github.com/cpeditor/cpeditor - e2134b18d98bd0a96453325043768bc62f4c8031 authored almost 5 years ago by Ashar <[email protected]>
pre-release for dev branch and about changes

github.com/cpeditor/cpeditor - 18600e412b83ee067ce70837c72253129f6b336f authored almost 5 years ago by Ashar Khan <[email protected]>
fix(Competitive Companion): Use int for TL and ML

github.com/cpeditor/cpeditor - fe87859449eaa09cca116ad574e6656f682ad047 authored almost 5 years ago by ouuan <[email protected]>
Release 5.8.2-beta

github.com/cpeditor/cpeditor - 6b7e2e0589bee5d976074ed09e9196f0151c94c1 authored almost 5 years ago by ouuan <[email protected]>
fix(compile): fix Python Compile & Run, fix #126

github.com/cpeditor/cpeditor - df9dd8086c210048fddf4535bb65fa019eeab1c5 authored almost 5 years ago by ouuan <[email protected]>
feat(main.cc): Add notification for single application

github.com/cpeditor/cpeditor - 47aaf00d54d41e6de4c8e8fa093ab5f4686cd702 authored almost 5 years ago by ouuan <[email protected]>
Release 5.8.1-beta

github.com/cpeditor/cpeditor - 9b6989771cd88a4802afc727665d67915796fb3e authored almost 5 years ago by ouuan <[email protected]>
chore: Update screenshot in README

github.com/cpeditor/cpeditor - 54612e1b0b00a8ef24041f0f78977d3c953f1b3d authored almost 5 years ago by ouuan <[email protected]>
fix(Diff Viewer): Replace spaces with &nbsp; in HTML

github.com/cpeditor/cpeditor - 2af61cce16f045e5bbe0d8b252ff20bb7dfa2643 authored almost 5 years ago by ouuan <[email protected]>
feat(TestCases): Display ID for each test case

github.com/cpeditor/cpeditor - 6b1df751a022d5e179fe654ba675a97faaa1ae8b authored almost 5 years ago by ouuan <[email protected]>
fix(TestCases): Add upperbound for number of test cases (100)

github.com/cpeditor/cpeditor - ec8244f86d3842f3496541e34c5d6266abad125e authored almost 5 years ago by ouuan <[email protected]>
Release 5.8.0-beta

github.com/cpeditor/cpeditor - dd1e6b33565097f87ffd50768aeb3e72f3fb79ba authored almost 5 years ago by ouuan <[email protected]>
feat: Add splitter for the right pane

github.com/cpeditor/cpeditor - 26180a3a99809e98494346a84db56ae9d18b2d1a authored almost 5 years ago by ouuan <[email protected]>
chore(BaseFiles/IO/preferencedialog): Delete useless files

github.com/cpeditor/cpeditor - 311f2a5722424ae99cd1e4f2d601be6af1405dcc authored almost 5 years ago by ouuan <[email protected]>
feat(Diff Viewer): Use plain diff for large text

github.com/cpeditor/cpeditor - fcbc8ea125da080290b6de60014a8e23fe8edd6b authored almost 5 years ago by ouuan <[email protected]>
fix(tab bar menu): Set default set problem URL text to current

github.com/cpeditor/cpeditor - 3be487842f33d9220871b3cb2c123d684a5aac4b authored almost 5 years ago by ouuan <[email protected]>
feat & refactor(TestCases): Accept drops for input/expected

github.com/cpeditor/cpeditor - f18de0023667313996f745a00494e844fb793e22 authored almost 5 years ago by ouuan <[email protected]>